//********************************************************************
//  Firm.java       Author: Lewis/Loftus
//
//  Demonstrates polymorphism via inheritance.
//********************************************************************

public class Firm
{
   //-----------------------------------------------------------------
   //  Creates a staff of employees for a firm and pays them.
   //-----------------------------------------------------------------
   public static void main (String[] args)
   {
      Staff personnel;        // declaration
		personnel  = new Staff();  //instantiation
	//	Shape myShape;
//		myShape = new Shape();
      personnel.payday();
   }
}
